1.8 – Materials Balances


1.8.0 – Learning Objectives

By the end of this section you should be able to:

  1. Understand the law of conservation of mass.
  2. Distinguish between the different types of balances.
  3. Solve a continuous steady-state material balance.
  4. Solve a batch material balance.

1.8.1 – Introduction

There are certain restrictions imposed by nature that must be considered when designing or analyzing a process. For example, you cannot input 1000 g of lead and output 2000g of lead or gold. Similarly, if you burn 20 kg of wood, you should know that 20 kg of ash and smoke, among other constituents, would be the result of the chemical reaction. The basis of these observations is the law of conservation of mass.


1.8.2 – The Law of Conservation of Mass

The law of conservation of mass states that mass cannot be destroyed or created. This is the crux of 241, its heart and soul. All exercises, exams and (reactor) life is centered around this equation.

We will not be concerned with the almost infinitesimal conversions between mass and energy associated with chemical reactions. This law means that in chemical reactions, the mass of the products will always be equal to the mas of the reactants. This includes anything from fires to acid-base titrations. Therefore, we can use the general balance equation:

\[Accumulation = Input + Generation - Output - Consumption\]

The units of the general mass balance are in units per time \(\frac{unit}{s}\)


1.8.3 – Types of Balances

1. Differential Balances

Differential balances indicate what is happening in a system at an instant of time and are usually used in a continuous process. Each term of the balance is a rate and has units of the quantity per unit time such as \(\frac{kg}{s}\). The general mass balance is a differential mass balance.

2. Integral Balances

Integral balances describe what is happening in a system between two instants of time and are usually used in a batch process. Each term of the equation is an amount of the quantity such as \(kg\).


1.8.4 – Balances on Continuous Steady-State Processes

In continuous steady-state processes, the accumulation term in the general balance equation equals zero,

\[Accumulation = 0\]

the equation simplifies to:

\[input + generation = output + consumption\]

If the balance is on a nonreactive process or on total mass, generation, and consumption equal zero and the equation further simplifies to:

\[input = output\]

1.8.5 – Integral Balances on Batch Processes

Integral balances on batch processes are solved very similarly. Since batch processes don’t have continuous inputs and outputs, \(generation = accumulation\). Furthermore, the accumulation in the process between \(t_0\) and \(t_f\) is simply \(n_f - n_0\). Therefore

\[accumulation = final \space output - initial \space input\]
\[accumulation = generation - consumption\]

Equating these two expressions yields

\[initial \space input + generation = final \space output + consumption\]

1.8.6 – Problem Statement

Problem 1

Question

One thousand kilograms per hour of a mixture of benzene (B) and toluene (T) containing 50% benzene by mass is separated by distillation into two fractions. The mass flow rate of benzene in the top stream is 450 kg B/h and that of toluene in the bottom stream is 475 kg T/h. The operation is at steady state. Solve for \(\dot{m}_1\) and \(\dot{m}_2\)

Attribution: Said Zaid-Alkailani & UBC [CC BY 4.0 de (https://creativecommons.org/licenses/by/4.0/)]

Answer by hand

Since we know that it is a continuous steady-state non-reactive process, we can use \(input = output\).

1. Toluene Balance
\[500 \space kg \space T/h = 475 \space kg \space T/h + \dot{m}_1\]
\[\dot{m}_1= 500 \space kg \space T/h - 475 \space kg \space T/h\]
\[\dot{m}_1 = 25 \space kg \space T/h\]
2. Benzene Balance
\[500 \space kg \space B/h = 450 \space kg \space B/h + \dot{m}_2\]
\[\dot{m}_2= 500 \space kg \space B/h - 450 \space kg \space B/h\]
\[\dot{m}_2 = 50 \space kg \space B/h\]

Answer using python

In [3]:
B_in = 500
T_in = 500

B_out_known = 450
T_out_known = 475

m1 = T_in - T_out_known
m2 = B_in - B_out_known

print("m1 is found to be:", m1, "kg/h \nm2 is found to be:", m2, "kg/h")
m1 is found to be: 25 kg/h
m2 is found to be: 50 kg/h

Problem 2

Question

Two methanol–water mixtures are contained in separate flasks. The first mixture contains 40.0 wt% methanol, and the second contains 70.0 wt% methanol. If 200 g of the first mixture is combined with 150 g of the second, what are the mass and composition of the product?

Attribution: Said Zaid-Alkailani & UBC [CC BY 4.0 de (https://creativecommons.org/licenses/by/4.0/)]

Answer by hand

Since we know this is a batch non-reactive balance, we can use \(initial \space input = final \space output\)

1. Overall Balance
\[m_1 = 200 \space g\]
\[m_2 = 150 \space g\]
\[m_3 = m_1 + m_2 = (200 + 150) \space g = 350 \space g\]
2. \(C H_3 O H\) Balance
\[m_3 \cdot x_{3, \space C H_3 O H} = m_1 \cdot x_{1, \space C H_3 O H} + m_2 \cdot x_{2, \space C H_3 O H}\]
\[(350) \cdot x_{3, \space C H_3 O H} = 200 \space g \cdot \frac{0.400 \space g \space C H_3 O H}{g} + 150 \space g \cdot \frac{0.700 \space g \space C H_3 O H}{g}\]
\[x_{3, \space C H_3 O H} = 0.529\]
\[x_{3, \space H_2 O } = (1-x_{3, \space C H_3 O H}) = 0.471\]

Finally, we can test if our values are correct with the \(H_2 O\) balance

3. \(H_2 O\) Balance
\[m_1 \cdot x_{1, \space H_2 O } + m_2 \cdot x_{2, \space H_2 O } = m_3 \cdot x_{3, \space H_2 O }\]
\[(200)(0.600) + (150)(0.300) = (350)(0.471)\]
\[165 \space g \space H_2 O = 165 \space g \space H_2 O\]

Answer using python

In [2]:
m1 = 200
x1_CH3OH = 0.4
x1_H20 = 0.6

m2 = 150
x2_CH3OH = 0.7
x2_H20 = 0.3

m3 = m1 + m2
x3_CH3OH = (m1*x1_CH3OH + m2*x2_CH3OH)/m3
x3_H20 = (1-x3_CH3OH)

print("m3 =", m3, "\nx3_CH3OH =", x3_CH3OH, "\nx3_H20 =", x3_H20)
m3 = 350
x3_CH3OH = 0.5285714285714286
x3_H20 = 0.4714285714285714
In [ ]: